C1.PivotEngine Assembly / C1.PivotEngine Namespace / C1PivotEngine Class / GetDetails Method / GetDetails(IEnumerable,Dictionary<String,Object>,Object[],CancellationToken) Method
Data source collection.
View definition used for performing aggregation.
Key values specifying one aggregated value (subtotal). See a description of keys and values in %C1.PivotEngine.C1PivotEngine.Exec(string, string, System.Collections.Generic.Dictionary<string,object>, System.Threading.CancellationToken)%
Enables task cancellation.

In This Topic
GetDetails(IEnumerable,Dictionary<String,Object>,Object[],CancellationToken) Method
In This Topic
Makes source data rows used in obtaining a given aggregated value accessible to the server's clients.
Syntax
'Declaration
 
Public Overloads Shared Function GetDetails( _
   ByVal dataSource As IEnumerable, _
   ByVal view As Dictionary(Of String,Object), _
   ByVal key() As Object, _
   ByVal cancelToken As CancellationToken _
) As Task(Of IList)
 

Parameters

dataSource
Data source collection.
view
View definition used for performing aggregation.
key
Key values specifying one aggregated value (subtotal). See a description of keys and values in %C1.PivotEngine.C1PivotEngine.Exec(string, string, System.Collections.Generic.Dictionary<string,object>, System.Threading.CancellationToken)%
cancelToken
Enables task cancellation.

Return Value

List of source data objects that contributed to the given aggregation value.
See Also